home *** CD-ROM | disk | FTP | other *** search
-
-
- /*
-
- Name: known.rexx
- Version: $VER: known_arexxscript 1.0 (15.01.2000)
- Author: Jan-Erik Tervo
-
- Description: Checks if the Callers Birthday is in the near future (2 weeks)
-
- Requires: AOS 3 or newer, ARexx, CIM r36 or better with ARexx Port enabled
-
- */
-
-
-
- OPTIONS RESULTS
-
- ADDRESS COMMAND 'RUN >NIL: RequestChoice "CIM" "A VOICE CALL RECEIVED !" "OK"'
-
-
- ADDRESS CIM
-
-
- CBDAYINFUTURE 14
-
- IF RC=0 THEN DO
-
- /* Birthday was found in the given time span! Lets display
- the data in CIM message window */
-
- BDAYMESSAGE_DTG
-
-
- END
-
-
-